projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf9cdd4
)
(Fcall_process_region): Use cdr part (not car part)
author
Kenichi Handa
<handa@m17n.org>
Mon, 4 Aug 1997 06:59:57 +0000
(06:59 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Mon, 4 Aug 1997 06:59:57 +0000
(06:59 +0000)
of Vdefault_process_coding_system for writing out text.
src/callproc.c
patch
|
blob
|
history
diff --git
a/src/callproc.c
b/src/callproc.c
index 63556f326679f754400ba350d99eaf2cd94f72e7..292e9af395752cd0a23f35cd45c41725c015274e 100644
(file)
--- a/
src/callproc.c
+++ b/
src/callproc.c
@@
-821,7
+821,7
@@
If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
if (CONSP (coding_systems))
val = XCONS (coding_systems)->cdr;
else if (CONSP (Vdefault_process_coding_system))
- val = XCONS (Vdefault_process_coding_system)->c
a
r;
+ val = XCONS (Vdefault_process_coding_system)->c
d
r;
else
val = Qnil;
}